home *** CD-ROM | disk | FTP | other *** search
/ Products & Services for NeXT / Products & Services for NeXT.iso / AlembicDemo.app / Axone / AddIn / MesaError.h < prev    next >
C/C++ Source or Header  |  1994-03-06  |  2KB  |  30 lines

  1. /**************************************************************************
  2.  *                                                                        *
  3.  *                                                                        *
  4.  *          This code is copyright (c) 1991                               *
  5.  *                     Athena Design, Inc.                                *
  6.  *                     and David Pollak                                   *
  7.  *                                                                        *
  8.  *                ALL RIGHTS RESERVED                                     *
  9.  *                                                                        *
  10.  *                                                                        *
  11.  *                                                                        *
  12.  *                                                                        *
  13.  *                                                                        *
  14.  **************************************************************************/
  15.  
  16. //    this handles the error messages for Mesa
  17. //    11/25/91 dpp
  18.  
  19. typedef enum {noError = 0,badInputError,badFormulaError,
  20.     stackUnderflowError,labelNotFoundError,circularError,divideByZeroError,
  21.     mathError, naError, rangeError, badAddressError, errorError, inherit1Error,
  22.     inherit2Error, macroCommandEndError, inputIntoProtCellError, paramFuncError,
  23.     branchNoFoundError, escError, unimplMenuError, multiEscError, refOverflowError,
  24.     irrError, noAddInFuncError, linkError, macroError, breakError, noScriptError,
  25.     syntaxError
  26.     ,lastError} ErrorType;
  27.  
  28. char *errorString(int);
  29. char *longErrorString(int);
  30.